math/big.Int.Add (method)
41 uses
math/big (current package)
int.go#L116: func (z *Int) Add(x, y *Int) *Int {
int.go#L253: z.Add(z, intOne)
int.go#L275: z.Add(z, y0)
int.go#L304: z.Add(z, intOne)
int.go#L308: m.Add(m, y0)
int.go#L641: A.Add(t, s)
int.go#L642: B.Add(r, q)
int.go#L752: Ua.Add(t, s)
int.go#L829: z.Add(&x, n)
int.go#L898: e := new(Int).Add(p, intOne) // e = p + 1
int.go#L941: n.Add(&n, intOne)
int.go#L949: y.Add(&s, intOne)
rat.go#L498: z.a.Add(&a1, &a2)
crypto/dsa
dsa.go#L148: h.Add(h, one)
dsa.go#L248: s.Add(s, z)
crypto/ecdsa
ecdsa.go#L140: k.Add(k, one)
ecdsa.go#L270: s.Add(s, e)
crypto/elliptic
elliptic.go#L76: threeX.Add(threeX, x)
elliptic.go#L79: x3.Add(x3, curve.B)
elliptic.go#L175: h.Add(h, curve.P)
elliptic.go#L189: r.Add(r, curve.P)
elliptic.go#L213: z3.Add(z1, z2)
elliptic.go#L244: alpha.Add(alpha, curve.P)
elliptic.go#L246: alpha2 := new(big.Int).Add(x, delta)
elliptic.go#L250: alpha.Add(alpha, alpha2)
elliptic.go#L259: x3.Add(x3, curve.P)
elliptic.go#L263: z3 := new(big.Int).Add(y, z)
elliptic.go#L267: z3.Add(z3, curve.P)
elliptic.go#L271: z3.Add(z3, curve.P)
elliptic.go#L278: beta.Add(beta, curve.P)
elliptic.go#L288: y3.Add(y3, curve.P)
crypto/rand
util.go#L91: p.Add(p, bigMod)
crypto/rsa
rsa.go#L539: m.Add(m, priv.Primes[0])
rsa.go#L544: m.Add(m, m2)
rsa.go#L553: m2.Add(m2, prime)
rsa.go#L556: m.Add(m, m2)
encoding/asn1
asn1.go#L146: ret.Add(ret, bigOne)
github.com/aws/aws-sdk-go-v2/internal/v4a
v4a.go#L144: d = d.Add(d, one)
go/constant
value.go#L1119: return makeInt(newInt().Add(big.NewInt(a), big.NewInt(b)))
value.go#L1157: c.Add(a, b)
vendor/golang.org/x/crypto/cryptobyte
asn1.go#L328: out.Add(out, bigOne)